home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / sambar_mailit.nasl < prev    next >
Text File  |  2005-03-31  |  1KB  |  52 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10417);
  10.  script_version ("$Revision: 1.13 $");
  11.  name["english"] = "Sambar /cgi-bin/mailit.pl installed ?";
  12.  script_name(english:name["english"]);
  13.  
  14.  desc["english"] = "The Sambar webserver is running
  15. and the 'mailit.pl' cgi is installed. This CGI takes
  16. a POST request from any host and sends a mail to a supplied address. 
  17.  
  18.  
  19. Solution : remove it from /cgi-bin.
  20. Risk factor : High";
  21.  
  22.  
  23.  script_description(english:desc["english"]);
  24.  
  25.  summary["english"] = "Checks for the presence of /cgi-bin/mailit";
  26.  
  27.  script_summary(english:summary["english"]);
  28.  
  29.  script_category(ACT_ATTACK);
  30.  
  31.  
  32.  script_copyright(english:"This script is Copyright (C) 2000 Hendrik Scholz");
  33.  family["english"] = "CGI abuses";
  34.  family["francais"] = "Abus de CGI";
  35.  script_family(english:family["english"], francais:family["francais"]);
  36.  script_dependencie("find_service.nes", "no404.nasl", "http_version.nasl");
  37.  script_require_ports("Services/www", 80);
  38.  script_require_keys("www/sambar");
  39.  exit(0);
  40. }
  41.  
  42. #
  43. # The script code starts here
  44. #
  45. include("http_func.inc");
  46. include("http_keepalive.inc");
  47. port = get_http_port(default:80);
  48.  
  49. cgi = "/cgi-bin/mailit.pl";
  50. res = is_cgi_installed_ka(port:port, item:cgi);
  51. if(res)security_hole(port);
  52.